home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / stdio / RCS / fflush.c,v < prev    next >
Text File  |  1991-12-02  |  2KB  |  115 lines

  1. head     1.2;
  2. branch   ;
  3. access   ;
  4. symbols  sprited:1.2.1;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.2
  10. date     88.07.25.08.54.16;  author ouster;  state Exp;
  11. branches 1.2.1.1;
  12. next     1.1;
  13.  
  14. 1.1
  15. date     88.06.10.16.23.42;  author ouster;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19. 1.2.1.1
  20. date     91.12.02.19.56.02;  author kupfer;  state Exp;
  21. branches ;
  22. next     ;
  23.  
  24.  
  25. desc
  26. @@
  27.  
  28.  
  29. 1.2
  30. log
  31. @Wasn't always returning quite the right thing.
  32. @
  33. text
  34. @/* 
  35.  * fflush.c --
  36.  *
  37.  *    Source code for the "fflush" library procedure.
  38.  *
  39.  * Copyright 1988 Regents of the University of California
  40.  * Permission to use, copy, modify, and distribute this
  41.  * software and its documentation for any purpose and without
  42.  * fee is hereby granted, provided that the above copyright
  43.  * notice appear in all copies.  The University of California
  44.  * makes no representations about the suitability of this
  45.  * software for any purpose.  It is provided "as is" without
  46.  * express or implied warranty.
  47.  */
  48.  
  49. #ifndef lint
  50. static char rcsid[] = "$Header: fflush.c,v 1.1 88/06/10 16:23:42 ouster Exp $ SPRITE (Berkeley)";
  51. #endif not lint
  52.  
  53. #include "stdio.h"
  54.  
  55. /*
  56.  *----------------------------------------------------------------------
  57.  *
  58.  * fflush --
  59.  *
  60.  *    Forces any buffered output data on stream to be output.
  61.  *
  62.  * Results:
  63.  *    EOF is returned if the stream isn't writable of if an error
  64.  *    occurred while writing it.
  65.  *
  66.  * Side effects:
  67.  *    If there is buffered data, it is written out.
  68.  *
  69.  *----------------------------------------------------------------------
  70.  */
  71.  
  72. int
  73. fflush(stream)
  74.     register FILE *stream;        /* Stream to be flushed. */
  75. {
  76.     if (!(stream->flags & STDIO_WRITE) || (stream->writeCount == 0)
  77.         || (stream->lastAccess == (stream->buffer-1))) {
  78.     return 0;
  79.     }
  80.     if (stream->status != 0) {
  81.     return EOF;
  82.     }
  83.     (*stream->writeProc)(stream, 1);
  84.     if (stream->status != 0) {
  85.     return EOF;
  86.     }
  87.     return 0;
  88. }
  89. @
  90.  
  91.  
  92. 1.2.1.1
  93. log
  94. @Initial branch for Sprite server.
  95. @
  96. text
  97. @d17 1
  98. a17 1
  99. static char rcsid[] = "$Header: /sprite/src/lib/c/stdio/RCS/fflush.c,v 1.2 88/07/25 08:54:16 ouster Exp $ SPRITE (Berkeley)";
  100. @
  101.  
  102.  
  103. 1.1
  104. log
  105. @Initial revision
  106. @
  107. text
  108. @d17 1
  109. a17 1
  110. static char rcsid[] = "$Header: atoi.c,v 1.1 88/04/28 17:20:23 ouster Exp $ SPRITE (Berkeley)";
  111. d51 4
  112. a54 1
  113.     return stream->status;
  114. @
  115.